home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Monstr2a.h < prev    next >
C/C++ Source or Header  |  1999-01-29  |  1KB  |  33 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Monstr2aH
  3. #define Monstr2aH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     TButton *Button1;
  14.     TButton *Button2;
  15.     TButton *Button3;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TLabel *Label3;
  19.     void __fastcall FormCreate(TObject *Sender);
  20.     void __fastcall Button2Click(TObject *Sender);
  21.     void __fastcall Button1Click(TObject *Sender);
  22.     void __fastcall Button3Click(TObject *Sender);
  23.     
  24.     
  25. private:    // Benutzer-Deklarationen
  26. public:        // Benutzer-Deklarationen
  27.     __fastcall TForm1(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern TForm1 *Form1;
  31. //---------------------------------------------------------------------------
  32. #endif
  33.